查询子商户管控情况
服务商查询子商户的管控情况。
请求参数 | 类型 | 描述 |
---|---|---|
sub_mchid | string | 子商户号 |
php
$instance->v3->mchOperationManage->merchantLimitations->subMchid->_sub_mchid_->getAsync([
'sub_mchid' => '123000110',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/mch-operation-manage/merchant-limitations/sub-mchid/{sub_mchid}')->getAsync([
'sub_mchid' => '123000110',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/mch-operation-manage/merchant-limitations/sub-mchid/{sub_mchid}']->getAsync([
'sub_mchid' => '123000110',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->mchOperationManage->merchantLimitations->subMchid->_sub_mchid_->get([
'sub_mchid' => '123000110',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/mch-operation-manage/merchant-limitations/sub-mchid/{sub_mchid}')->get([
'sub_mchid' => '123000110',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/mch-operation-manage/merchant-limitations/sub-mchid/{sub_mchid}']->get([
'sub_mchid' => '123000110',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
mchid | string | 商户号 |
limited_functions | string[] | 商户被管控能力列表NO_TRANSACTION_AND_RECHARGE | NO_PAYMENT | NO_WITHDRAWAL | NO_REFUND | NO_TRANSACTION | NO_PROFIT_SHARING | NO_PAYMENT_POINT_COMPLETE_ORDER 枚举值之一 |
recovery_specifications | object[] | 被管控原因及解脱路径列表 |
limitation_case_id | string | 商户被该原因管控的单据号 |
limitation_reason | string | 商户被管控原因 |
limitation_reason_describe | string | 商户被管控原因描述 |
recover_way | string | 商户被该原因管控的解脱路径IRRECOVERABLE | MODIFY_SUBJECT_INFORMATION | MODIFY_SETTLE_ACCOUNT_INFORMATION | VERIFY_INACTIVE_MERCHANT_IDENTITY | SUBMIT_OFFLINE_BUSINESS_SCENARIO_INFORMATION | SUBMIT_INFORMATION_FOR_APPEAL | RESOLVE_TRANSACTION_DISPUTES | MODIFY_ADMINISTRATOR_INFORMATION | CALL_CUSTOMER_SERVICE_AT_95017 | UPDATE_BUSINESS_SCENARIO_INFORMATION | SUBMIT_CDD_INFORMATION | WAITING_FOR_PLATFORM_REVIEW | SUBMIT_UBO_INFORMATION 枚举值之一 |
recover_way_param | string | 商户被该原因管控的解脱路径参数 |
recover_help_url | string | 商户被该原因管控的解脱帮助链接 |
limitation_action_type | string | 处置方式LIMIT_ACTION_TYPE_IMMEDIATE_CONTROL | LIMIT_ACTION_TYPE_DELAY_CONTROL 枚举值之一 |
limitation_start_date | string | 预计管控开始时间 |
limitation_date | string | 商户被该原因管控的时间 |
limitation_reason_type | string | 商户被管控原因类型LICENSE_ABNORMAL | NO_TRADE | SETTLE_ACCOUNT_ABNORMAL | RISK_ABNORMAL | OTHER | INSPECT_ABNORMAL | INVALID_REPRESENTATIVE_INFORMATION | INVALID_BUSINESS_STATUS | INVALID_BUSINESS_LICENSE | INVALID_BENEFICIARY_INFORMATION 枚举值之一 |
relate_limitations | string[] | 商户被该原因管控的能力列表NO_TRANSACTION_AND_RECHARGE | NO_PAYMENT | NO_WITHDRAWAL | NO_REFUND | NO_TRANSACTION | NO_PROFIT_SHARING | NO_PAYMENT_POINT_COMPLETE_ORDER 枚举值之一 |
other_relate_limitations | string | 商户被该原因管控的其他能力描述 |
other_limited_functions | string | 商户其他被管控能力描述 |
参阅 官方文档